@charset "utf-8";
@font-face {
    font-family: 'HancomMalangMalang-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/2406-1@1.0/HancomMalangMalang-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
    font-family: 'noto';
    src: url(../font/NotoSansKR-Regular.ttf);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans", "Noto Sans KR", serif;
    font-family: 'noto';
}
body {
    font-family: "Noto Sans", "Noto Sans KR", serif;
    font-family: 'noto';
}
a {
    color: #000;
    text-decoration: none;
    font-family: "Noto Sans", "Noto Sans KR", serif;
    font-family: 'noto';
}
img{
    max-width: 100%;
}
ol,ul,li{
    list-style: none;
}
body {
    color: #fff;
}
.wrap{
    width: 100%;
}
.line{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.2);
    height: 90px;
    z-index: 999;
    background: rgba(0,0,0,.8);
}
#header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
}
.headIn{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 80%;
    /* width: 1200px; */
    height: 90px;
    z-index: 1000;
    /* background: #ff0; */
    display: flex;
    justify-content: space-between;
    /* padding: 0 200px; */
    align-items: center;
    margin: 0 auto;
}
#header:hover{
    /* background: rgba(0,0,0,.8); */
}
#header.scrolled {
    background: #fff;
    opacity: 80%; 
}

#header.scrolled #nav li a {
    color: #000; 
}
#header.scrolled:hover #nav li a{
    color: #fff; 
}
#header.scrolled #nav:hover li a{
    color: #fff; 
}
#header.scrolled #nav li:hover>a{
    color: #f00;
}
#logo{
    height: 35px;
    width: 200px;
    /* background: #f09; */
    min-width: 200px;
}
#logo a img{
    height: 35px;
}
.look{
    display: block;
}
.hide{
    display: none;
}
#nav{
    height: 26px;
    /* background: #09f; */
    position: absolute;
    right: 0;
    font-family: 'noto';
}
#nav>ul{
    display: flex;
    justify-content: space-between;
}
#nav>ul>li{
    /* margin-right: 20px; */
    /* margin-right: clamp(10px, 5vw, 20px); */
}
#nav>ul>li>a:after{
    content: "";
    display: block;
    background: rgb(219, 0, 29);
    position: absolute;
    top: 54px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 5px;
    transition: all .3s;
}
#nav>ul>li>a:hover:after{
    width: 50%;
}
#nav>ul>li:last-child{
    margin-right: 0;
    
}

#nav>ul>li>a{
    position: relative;
    height: 26px;
    line-height: 26px;
    display: inline-block;
    width: clamp(100px, 12vw, 160px);  /* width를 100px에서 160px로 비율 조정 */
    text-align: center;
    color: #fff;
    font-weight: 400;
    transition: all 0.3s ease;  /* 부드러운 transition 효과 추가 */
    font-family: 'noto';
}

#nav>ul>li:hover>a{
    font-weight: 600;
    color: #f00;
    width: clamp(100px, 12vw, 160px);  /* hover 시에도 동일한 반응형 width 유지 */
}

#nav ul ul{
    display: none;
    margin-top: 50px;
    margin-left: clamp(10px, 3vw, 50px);  /* margin-left를 10px에서 30px로 비율 조정 */
}

.sub_back{
    display: none;
    position: absolute;
    top: 90px;
    width: 100%;
    height: 250px;
    background: rgba(0,0,0,.8);
}

#nav .sub li{
    height: 30px;
}

#nav .sub li a{
    height: 30px;
    line-height: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 200;
}

#nav .sub li a:hover{
    font-weight: 600;
    color: #f00;
}

/* parallax__cont */
#parallax__cont {
    overflow: hidden;
}
.parallax__item {
    width: 100%;
    height: 100vh;
    /* position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
}

.slideW{
    width: 100vw;
    /* height: 100vh; */
    /* max-width: 100%; */
    max-width: 1920px;
}
@media (min-width: 501px) {
    .slideW .slideWrap, .slide ul {
        height: 100vh;
    }
}
.slideWrap{
    width: 100vw;
    height: 100vh;
    /* margin: 0 auto; */
    overflow: hidden;
    position: relative;
    left: 0;
    top: 0;
}
.slide ul {
    width: 300%; /* 3개의 슬라이드 항목 */
    height: 100vh;
    position: absolute;
    display: flex;
    left: 0;
    top: 0;
    transition: transform 0.5s ease-in-out;
    margin-left: -1.2%;
}
.slide ul li {
    width: 33.333%; /* 슬라이드 개수에 따라 100%를 나눔 */
    height: 100vh;
    /* overflow: hidden;
    float: left; */
    position: relative;
    font-family: 'noto';
}
@media (max-width: 500px) {
    .main {
        /* height: 30vh; */
        height: 260px;
        width: 100vw; /* 100vw 유지 */
        margin: 0 auto;
        max-width: 100%;
    }
    .slideWrap {
        width: 100%;
        height: 260px;
        position: relative;
        left: 0;
        top: 0;
        overflow: hidden;
    }
    .slide ul {
        width: 300%; /* 3개의 슬라이드 기준 */
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        transition: transform 0.5s ease-in-out;
    }
    .slide ul li {
        width: 33.333%; /* 3개 기준 */
        height: 100%;
    }
    .slide ul li a {
        display: block;
        width: 100%;
        height: 100%;
    }
    .slide ul li a img,
    .slide ul li a video {
        width: 100%;
        height: auto; /* 세로 비율 유지하면서 축소 */
        max-width: 500px;
        max-height: 260px; 
        object-fit: contain; /* 비율을 유지하면서 축소 */
        display: block;
        margin: 0 auto;
    }

    
    .slide ul li h5 .letter1 {
        text-align: left;
        width: 100%;
        position: absolute;
        left: 17vw; 
        top: 27vh;
        font-size: 30px; 
    }

    .slide ul li h2 .title1 {
        text-align: left;
        width: 100%;
        position: absolute;
        left: 17vw;  
        top: 42vh;
        font-size: 2.5vw; 
        font-size: 30px !important; 
    }

    .slide ul li h5 .letter3 {
        text-align: center;
        width: 100%;
        position: absolute;
        left: 49%; 
        transform: translateX(-50%); 
        /* top: 27%; */
        top: 10vh !important;
        font-size: 20px !important; 
    }
    .slide ul li h2 .title3 {
        text-align: center;
        width: 100%;
        position: absolute;
        left: 49%;  
        transform: translateX(-50%); 
        /* top: 40%; */
        top: 15vh !important;
        font-size: 20px !important; 
    }
    .slide ul li h5 .letter2 {
        text-align: left;
        width: 100%;
        position: absolute;
        left: 20vw !important; 
        top: 10vh !important;
        font-size: 20px !important; 
    }
    .slide ul li h5 .letter2- {
        text-align: left;
        width: 100%;
        position: absolute;
        left: 20vw !important;  /* 화면 너비의 17%로 설정 */
        top: 15vh !important;
        font-size: 20px !important; 
    }

    }



/* h5, h2 애니메이션 효과 */
.letter, .title {
    opacity: 0;
    transform: translateY(30px); 
    transition: all 1s ease;
    font-family: 'noto';
}

.letter.show, .title.show {
    opacity: 1;
    transform: translateY(0);
}

.slide ul li h5 .letter1 {
    font-family: 'noto';
    text-align: left;
    width: 100%;
    position: absolute;
    left: 17vw; 
    top: 27vh;
    font-size: clamp(40px, 4vw, 80px); 
    z-index: 99;
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
                 0 2px 2px rgba(0,0,0,0.11), 
                 0 4px 4px rgba(0,0,0,0.11), 
                 0 8px 8px rgba(0,0,0,0.11), 
                 0 16px 16px rgba(0,0,0,0.11), 
                 0 32px 32px rgba(0,0,0,0.11);
}

.slide ul li h2 .title1 {
    font-family: 'noto';
    text-align: left;
    width: 100%;
    position: absolute;
    left: 17vw;  
    top: 42vh;
    font-size: 2.5vw; 
    font-size: clamp(16px, 2.5vw, 55px); 
    z-index: 99;
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
                 0 2px 2px rgba(0,0,0,0.11), 
                 0 4px 4px rgba(0,0,0,0.11), 
                 0 8px 8px rgba(0,0,0,0.11), 
                 0 16px 16px rgba(0,0,0,0.11), 
                 0 32px 32px rgba(0,0,0,0.11);
    font-weight: 400;
}

.slide ul li h5 .letter3 {
    font-family: 'noto';
    text-align: center;
    width: 100%;
    position: absolute;
    left: 49%; 
    transform: translateX(-50%); 
    /* top: 27%; */
    top: 27vh;
    font-size: clamp(30px, 3.5vw, 80px); 
    z-index: 99;
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
                 0 2px 2px rgba(0,0,0,0.11), 
                 0 4px 4px rgba(0,0,0,0.11), 
                 0 8px 8px rgba(0,0,0,0.11), 
                 0 16px 16px rgba(0,0,0,0.11), 
                 0 32px 32px rgba(0,0,0,0.11);
    /* text-align: center; */
    /* width: 100%; */
}
.slide ul li h2 .title3 {
    font-family: 'noto';
    text-align: center;
    width: 100%;
    position: absolute;
    left: 49%;  
    transform: translateX(-50%); 
    /* top: 40%; */
    top: 40vh;
    font-size: clamp(40px, 4vw, 80px); 
    z-index: 99;
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
                 0 2px 2px rgba(0,0,0,0.11), 
                 0 4px 4px rgba(0,0,0,0.11), 
                 0 8px 8px rgba(0,0,0,0.11), 
                 0 16px 16px rgba(0,0,0,0.11), 
                 0 32px 32px rgba(0,0,0,0.11);
    /* text-align: center; */
    /* width: 100%; */
}


.slide ul li h5 .letter2 {
    font-family: 'noto';
    text-align: left;
    width: 100%;
    position: absolute;
    left: 16vw; 
    top: 27vh;
    font-size: clamp(25px, 3vw, 80px); 
    z-index: 99;
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
                 0 2px 2px rgba(0,0,0,0.11), 
                 0 4px 4px rgba(0,0,0,0.11), 
                 0 8px 8px rgba(0,0,0,0.11), 
                 0 16px 16px rgba(0,0,0,0.11), 
                 0 32px 32px rgba(0,0,0,0.11);
    color: #f00;
}

.slide ul li h5 .letter2- {
    font-family: 'noto';
    text-align: left;
    width: 100%;
    position: absolute;
    left: 16vw;  /* 화면 너비의 17%로 설정 */
    top: 36vh;
    font-size: clamp(30px, 3.5vw, 80px); 
    z-index: 99;
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
                 0 2px 2px rgba(0,0,0,0.11), 
                 0 4px 4px rgba(0,0,0,0.11), 
                 0 8px 8px rgba(0,0,0,0.11), 
                 0 16px 16px rgba(0,0,0,0.11), 
                 0 32px 32px rgba(0,0,0,0.11);
}

.slide ul li h2 .title2 {
    font-family: 'noto';
    text-align: left;
    width: 100%;
    position: absolute;
    left: 16vw;  /* 화면 너비의 17%로 설정 */
    top: 50vh;
    font-size: clamp(16px, 2vw, 55px); 
    z-index: 99;
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
                 0 2px 2px rgba(0,0,0,0.11), 
                 0 4px 4px rgba(0,0,0,0.11), 
                 0 8px 8px rgba(0,0,0,0.11), 
                 0 16px 16px rgba(0,0,0,0.11), 
                 0 32px 32px rgba(0,0,0,0.11);
    font-weight: 400;
}

.slide ul li h5 span{
    font-family: 'noto';
    color: #fff;
}
.slide ul li h2 span{
    font-family: 'noto';
    color: #fff;
}

.slide>ul>li>a>img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    /* max-width: 100%; */
}
.slide>ul>li>a>video{
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    /* max-width: 100%; */
}
.slideIcon span:first-child i{
    position: absolute;
    text-align: center;
    line-height: 71px;
    font-size: 23px;
    background: rgba(255,255,255,.2);
    box-shadow: #4f0015 0,0,5px;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #fff;
}
.slideIcon span:first-child:hover i{
    background: rgba(255,255,255,.5);
    color: #ba0c2f;
}
.slideIcon span:nth-child(2) i{
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    text-align: center;
    line-height: 71px;
    font-size: 23px;
    width: 70px;
    height: 70px;
    right: 7.5%;
    cursor: pointer;
    color: #fff;
}
.slideIcon span:nth-child(2):hover i{
    background: rgba(255,255,255,.5);
    color: #ba0c2f;
}
.slideBar{
    position: absolute;
    width: 287px;
    height: 6px;
    background: rgba(255,255,255,.5);
    left: 48%;
    bottom: 20%;
    transform: translateX(-50%);
}
.slideBar li{
    position: absolute;
    width: 287px;
    height: 6px;
    left: 0; top: 0;
}
.slideBar a{
    display: block;
    width: 100%;
    height: 6px;
    background: #fff;
}
.text-indent{
    text-indent: -9999px;
}

.mo{
    display: none;
}
@media (max-width: 1050px) {
    #left-1051, #right-1051 {
        display: none;
    }
    #left-1050, #right-1050 {
        display: block;
    }
    .pc{
        display: none;
    }
    .mo{
        display: block;
    }
    #header{
        display: none;
    }
    #head{
        position: fixed;
        z-index: 99999;
    }
    .subb{
        display: none;
        transition: all .5s;
    }
    .subb.on{
        display: block;
    }
    .subb li{
        line-height: 25px;
    }
    .subb li a{
        font-size: 14px;
    }
    .subb li a:hover{
        color: #d0002a;
        font-weight: 700;
    }
    #menu{
        display: none;
        padding-top: 40px;
        position: absolute;
        left: 50%;
        top: 0;
        width: 100vw;
        height: 100vh;
        transform: translate(-50%);
        text-align: center;
        line-height: 50px;
        width: 100%;
        background: #fff;
        /* pointer-events: auto; */
    }
    #menu.open{
        display: block;
    }
    #menu>ul>li{
        line-height: 40px;
        font-size: 20px;
        border-bottom: 1px solid #e8e8e8;
        padding-bottom: 20px;
        padding-top: 20px;
        transition: all .5s;
    }
    #menu>ul>li:hover>a{
        color: #d0002a;
    }
    #menu>ul>li:hover{
        border-bottom: 1px solid #d0002a;
        background: #f6f6f6;
    }
    #menu>ul>li>a{
        font-weight: 700;
    }
    .back{
        position: absolute;
        left: 0;
        top: 0;
        display: none;
        width: 100vw;
        height: 100vh;
        background: #fff;
        z-index: 99;
    }
    .back.open{
        display: block;
    }
    .m_btn{
        position: fixed;
        z-index: 9999999;
        right: 50px;
        top: 20px;
        width: 25px;
        height: 25px;
        cursor: pointer;
        margin-bottom: 22px;
    }
    .line1{
        width: 25px;
        height: 2px;
        transform: rotate(0deg);
        position: relative;
        transition: all .4s;
        background: #fff;
        position: relative;
        margin-top: 10px;
        box-shadow: 1px 1px 1px #000;
    }
    .line2{
        width: 30px;
        height: 2px;
        background: #fff;
        transform: rotate(0deg);
        position: relative;
        transition: all .4s;
        opacity: 1;
        margin: 5px 0;
        box-shadow: 1px 1px 1px #000;
    }
    .line3{
        width: 25px;
        height: 3px;
        background: #f00;
        transform: rotate(0deg);
        position: relative;
        transition: all .4s;
    }
    .m_btn.active .line1{
        transform: rotate(-45deg);
        top: 9px;
        background: #000;
    }
    .m_btn.active .line2{
        opacity: 0;
    }
    .m_btn.active .line3{
        transform: rotate(45deg);
        top: -9px;
        background: #d0002a;
    
    }
    .coL span{
        display: none;
    }
}
#section1 {
    background: #fff;
    display: flex;
    justify-content: center; 
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    /* padding: 0 100px 0; */
    font-family: 'noto';
}
#section1 .g1{
    background: url(../img/images01.png) center/cover;
    text-align: center;
    width: 55%;
    padding: 300px 100px 0;
}
#section1 .g1 p{
    font-family: 'noto';
    text-align: center;
    font-size: 1.7rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 5px #000;
}
#section1 .g2{
    padding-top: 150px;
    color: #000;
    width: 45%;
    text-align: right;
    background: url(../img/img/back.png) no-repeat center bottom/contain;
}
#section1 .g2 p{
    font-family: 'noto';
    text-align: center;
    line-height: 4.5vh;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}
#section1 .g2 p:first-child{
    font-size: 1.7rem;
    font-weight: 600;
    padding-bottom: 40px;
}
#section1 .g2 p.last{
    text-align: right;
    margin-right:150px;
    padding-bottom: 30px;
    padding-top: 70px;
}
#section1 img{
    width: 100px;
    margin-right:100px;
}
@media (max-width: 968px) {
    #section1 {
        display: block;
    }
    #section1 .g1{
        width: 100%;
        padding: 190px 5px;
    }
    #section1 .g1 p{
        font-size: 20px;
    }
    #section1 .g2{
        width: 100%;
        padding: 50px;
    }
    #section1 .g2 p{
        font-size: 16px;
        line-height: 3vh;
    }
    #section1 img{
        width: 80px;
        margin-right:80px;
        padding: 0;
    }
    #section1 .g2 p:first-child{
        padding: 0;
    }
    #section1 .g2 p.last{
        text-align: right;
        margin-right:80px;
        padding: 0;
    }
}
#section12 {
    background: #fff;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    padding: 100px 100px 10px;
    margin-bottom: 50px;
}
#section12 h2{
    font-size: 60px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 60px;
    color: #ba0c2f;
    /* font-family: 'HancomMalangMalang-Regular'; */
    font-weight: 600;
    font-family: 'noto';
}
#section12 .map{
    text-align: center;
    display: flex;
    justify-content: center; 
    color: #000;
}
#section12 .map .leftM{
    width: 50%;
    padding: 30px;
}
#section12 .map .leftM p{
    font-size: 20px;
    font-family: 'noto';
}
#section12 .map .rightM p{
    font-size: 20px;
    font-family: 'noto';
}
#section12 .map .leftM .lm{
    /* border: 5px solid #dbdbdb; */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 24.3px 2.7px rgba(0, 0, 0, 0.2);
}
#section12 .map .rightM .rm{
    border-radius: 10px;
    /* border: 5px solid #dbdbdb; */
    overflow: hidden;
    box-shadow: 5px 5px 24.3px 2.7px rgba(0, 0, 0, 0.2);
}
#section12 .map .leftM iframe{
    width: 100%;
}
#section12 .map .rightM iframe{
    width: 100%;
    border: 1px solid #000;
}
#section12 .map .rightM{
    width: 50%;
    padding: 30px;
}
#section12 .map p{
    margin-top: 30px;
    font-family: 'noto';
}
@media screen and (max-width: 500px) {
    #section12{
        height: auto;
        margin-bottom: 20px;
    }
    #section12 h2{
        margin-bottom: 40px;
    }
    #section12 .map {
        flex-direction: column; /* 세로 배치 */
        align-items: center;
        gap: 20px; /* 요소 간 간격 추가 */
    }

    #section12 .map .leftM,
    #section12 .map .rightM {
        width: 100%; /* 전체 너비 차지 */
        padding: 20px;
    }
    #section12 .map .leftM .lm{
        margin: 0 auto;
        width: 85%;
        height: 250px !important;
    }
    #section12 .map .rightM .rm{
        margin: 0 auto;
        width: 85%;
        height: 250px !important;
    }
    #section12 .map .leftM p,
    #section12 .map .rightM p {
        font-size: 16px;
    }
}


/* section3 */
/* #section3 h2.show {
    transform: translateY(0);
    opacity: 1; 
} */
#section3{
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    padding: 100px 100px 0;
}
#section3 h2{
    font-family: 'noto';
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
    color: #ba0c2f;
    /* font-family: 'HancomMalangMalang-Regular'; */
    font-weight: 600;
    /* text-shadow: 1px 1px 1px #000; */
}
#section3 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    width: 100%;
    gap: 5px; 
    /* 항목 간격 추가 */
}
#section3 ul.s3_jit li {
    border-radius: 20px;
    background: #f9f9f9;
    box-shadow: inset 0px 5px 10px 0 rgba(121, 121, 121, 0.08); 
    transition: all .5s ease;
    flex: 1 1 calc(50% - 20px); 
    overflow: hidden;
    /* transform: translateY(30px); 
    opacity: 0;  */
}
/* #section3 ul.s3_jit li.show {
    transform: translateY(0);
    opacity: 1; 
} */
/* @media screen and (max-width: 1050px) {
    #section3 ul li {
        animation: fadeInUp 0.6s ease forwards;
        animation-delay: 0s; 
    }
    #section3 ul li.show {
        opacity: 1;
        transform: translateY(0);
    }
} */
#section3 ul li:hover{
    flex: 1.3;
    background: #000 !important;
}
#section3 ul li:hover a p{
    font-family: 'noto';
    /* text-shadow: 1px 1px 1px #fff; */
    /* color: #fff; */
    font-size: 40px;
}
#section3 ul li:hover a div{
    scale: 1.1;
}
#section3 ul li:not(:hover) {
    flex: 0.9;
}
#section3 ul li a {
    font-family: 'noto';
    display: block;
    /* background: #f09; */
}
#section3 ul li a>div{
    transition: all .5s ease;
    max-width: 100%;
    display: block;
    margin: 5px auto;
    height: 400px; 
    text-align: center;
    /* height: 500px; */
    text-indent: -999900px;
    background: url(../img/JIT-800GX-h.png) no-repeat center/cover;
}
#section3 ul li:nth-child(2) a>div{
    text-indent: -999900px;
    background: url(../img/JIT-700GX-h.png) no-repeat center/cover;
}
#section3 ul li:nth-child(3) a>div{
    text-indent: -999900px;
    background: url(../img/JIT-650GX-h.png) no-repeat center/cover;
}
#section3 ul li:nth-child(4) a>div{
    text-indent: -999900px;
    background: url(../img/JIT-600GX-h.png) no-repeat center/cover;
}
#section3 ul li:nth-child(5) a>div{
    text-indent: -999900px;
    background: url(../img/JIT-500GX-h.png) no-repeat center/cover;
}
#section3 ul li a>p{
    font-family: 'noto';
    text-shadow: 1px 1px 1px #000;
    font-weight: 600;
    color: #ba0c2f;
    margin-top: 15px;
    padding-bottom: 30px;
    font-size: 30px;
    transition: all .5s ease;
}

@media screen and (max-width: 1050px) {
    #section3 {
        padding-left: 0px;
        padding-right: 0px;
        height: auto;
        padding-bottom: 10%;
    }

    #section3 h2 {
        font-size: 50px;
    }

    #section3 ul {
        display: flex;
        flex-direction: column;
        /* gap: 20px; */
    }

    #section3 ul li {
        width: 80%;
        margin: 0 10%;
        flex: 1 1 100%; 
        transition: none; 
    }

    #section3 ul li a > div {
        height: 200px; 
        margin: 5px auto;
        max-width: 85%;
        display: block;
    }

    #section3 ul li a > p {
        font-size: 25px;
        padding-bottom: 15px;
        text-align: center;
    }

    #section3 ul li:hover a p {
        font-size: 25px;
    }
}

/* section2 */
/* #section2 h2.show {
    transform: translateY(0); 
    opacity: 1; 
} */
#section2{
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    padding: 100px 100px 0;
}
#section2 h2{
    font-family: 'noto';
    font-size: 60px;
    text-align: center;
    margin-bottom: 20px;
    color: #ba0c2f;
    /* font-family: 'HancomMalangMalang-Regular'; */
    font-weight: 600;
    /* text-shadow: 1px 1px 1px #000; */
}
/* #section2 h2 {
    transform: translateY(30px); 
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
} */
#section2 ul {
    display: flex;
    flex-wrap: wrap; /* 줄바꿈을 허용 */
    justify-content: center;
    align-items: flex-start; /* 내용이 상단에 정렬되도록 */
    text-align: center;
    width: 100%;
    gap: 5px; 
    /* 항목 간격 추가 */
}
#section2 ul.s1_jit li {
    border-radius: 20px;
    background: #f9f9f9;
    box-shadow: inset 0px 5px 10px 0 rgba(121, 121, 121, 0.08); 
    transition: all .5s ease;
    flex: 1 1 calc(50% - 20px); 
    overflow: hidden;
    /* transform: translateY(30px); 
    opacity: 0;  */
}
/* #section2 ul.s1_jit li.show {
    transform: translateY(0);
    opacity: 1; 
} */
/* @media screen and (max-width: 1050px) {
    #section2 ul li {
        animation: fadeInUp 0.6s ease forwards;
        animation-delay: 0s;
    }

    #section2 ul li.show {
        opacity: 1;
        transform: translateY(0); 
    }
} */
#section2 ul li:hover{
    flex: 1.3;
    background: #000 !important;
}
#section2 ul li:hover a p{
    font-family: 'noto';
    /* text-shadow: 1px 1px 1px #fff; */
    /* color: #fff; */
    font-size: 40px;
}
#section2 ul li:hover a div{
    scale: 1.1;
}
#section2 ul li:not(:hover) {
    flex: 0.9;
}
#section2 ul li a {
    font-family: 'noto';
    display: block;
    /* background: #f09; */
}
#section2 ul li a>div{
    transition: all .5s ease;
    max-width: 100%;
    display: block;
    margin: 5px auto;
    height: 400px; 
    text-align: center;
    /* height: 500px; */
    text-indent: -999900px;
    background: url(../img/JIT-900Mmini-h.png) no-repeat center/cover;
}
#section2 ul li:nth-child(2) a>div{
    text-indent: -999900px;
    background: url(../img/JIT-9000G-h.png) no-repeat center/cover;
}
#section2 ul li:nth-child(3) a>div{
    text-indent: -999900px;
    background: url(../img/JIT-91000G-h.png) no-repeat center/cover;
}
#section2 ul li:nth-child(4) a>div{
    text-indent: -999900px;
    background: url(../img/dic.png) no-repeat center/cover;
}
#section2 ul li a>p{
    font-family: 'noto';
    text-shadow: 1px 1px 1px #000;
    font-weight: 600;
    color: #ba0c2f;
    margin-top: 15px;
    padding-bottom: 30px;
    font-size: 30px;
    transition: all .5s ease;
}
#section2 ul li:last-child a>p{
    font-family: 'noto';
    margin-top:-26px;
}

/* 반응형 설정 */
@media screen and (max-width: 1050px) {
    /* #section2 ul li:last-child a>p{
        margin-top:-20px;
    } */
    #section2{
        padding-left:0px ;
        padding-right: 0px;
        height: auto;
        padding-bottom: 10%;
    }
    #section12 {
        padding-left:0px ;
        padding-right: 0px;
    }
    #section2 h2{
        font-size: 50px;
    }
    #section12 h2{
        font-size: 50px;
    }
    #section2 ul {
        display: flex;
        flex-direction: column;
        /* gap: 20px; */
    }
    #section2 ul li {
        width: 80%;
        margin: 0 10%;
        flex: 1 1 100%; 
        transition: none; 
    }
    
    #section2 ul li a > div {
        height: 200px; 
        margin: 5px auto;
        max-width: 85%;
        display: block;
    }

    #section2 ul li a > p {
        font-size: 25px;
        padding-bottom: 15px;
        text-align: center;
    }

    #section2 ul li:hover a p {
        font-size: 25px;
    }

}

/* 기본적으로 두 구조를 숨기기 */
#left-1050, #right-1050 {
    display: none;
}
#left-1051, #right-1051 {
    display: block;
}

/* 반응형 설정 */
@media (max-width: 500px) {
    #left-1051, #right-1051 {
        display: none;
    }
    #left-1050, #right-1050 {
        display: block;
    }
}
@media (max-width: 500px) {
    #left-1051, #right-1051 {
        display: none;
    }
    #left-1050, #right-1050 {
        display: block;
    }
}

/* section4 */
/* #section4 h2.show {
    transform: translateY(0);
    opacity: 1; 
} */
#section4{
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    padding: 100px 100px 0;
}
#section4 h2{
    font-family: 'noto';
    font-size: 60px;
    text-align: center;
    margin-bottom: 100px;
    color: #ba0c2f;
    /* font-family: 'HancomMalangMalang-Regular'; */
    font-weight: 600;
    /* text-shadow: 1px 1px 1px #000; */
}
#section4 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    width: 100%;
    gap: 5px; 
    /* 항목 간격 추가 */
    position: relative;
}
#section4 ul.s4_jit li {
    border-radius: 20px;
    background: #f9f9f9;
    box-shadow: inset 0px 5px 10px 0 rgba(121, 121, 121, 0.08); 
    transition: all .5s ease;
    flex: 1 1 calc(50% - 20px); 
    overflow: hidden;
    /* transform: translateY(30px); 
    opacity: 0;  */
}
/* #section4 ul.s3_jit li.show {
    transform: translateY(0);
    opacity: 1; 
} */
/* @media screen and (max-width: 1050px) {
    #section4 ul li {
        animation: fadeInUp 0.6s ease forwards;
        animation-delay: 0s; 
    }
    #section4 ul li.show {
        opacity: 1;
        transform: translateY(0);
    }
} */
#section4 ul li:hover{
    flex: 1.3;
    background: #000 !important;
}
#section4 ul li:hover a p{
    font-family: 'noto';
    /* text-shadow: 1px 1px 1px #fff; */
    /* color: #fff; */
    font-size: 40px;
}
#section4 ul li:hover a div{
    scale: 1.02;
}
#section4 ul li:not(:hover) {
    flex: 0.99;
}
#section4 ul li a {
    display: block;
    /* background: #f09; */
}
#section4 ul li a>div{
    transition: all .5s ease;
    max-width: 100%;
    display: block;
    margin: 5px auto;
    height: 400px; 
    text-align: center;
    /* height: 500px; */
    text-indent: -999900px;
    background: url(../img/JIT-700w-h.png) no-repeat center/cover;
}
#section4 ul li:nth-child(2) a>div{
    text-indent: -999900px;
    background: url(../img/JIT-gx25-h.png) no-repeat center/cover;
}
#section4 ul li:nth-child(3) a>div{
    text-indent: -999900px;
    background: url(../img/JIT-gx15-h.png) no-repeat center/cover;
}
#section4 ul li a>p{
    font-family: 'noto';
    text-shadow: 1px 1px 1px #000;
    font-weight: 600;
    color: #ba0c2f;
    margin-top: 15px;
    padding-bottom: 30px;
    font-size: 30px;
    transition: all .5s ease;
}
@media screen and (max-width: 500px) {
    #section4 .f1{
        display: none;
    }
    #section4 .f2{
        display: none;
    }

}
#section4 .f1{
    font-family: 'noto';
    color: #565656;
    position: absolute;
    left: 13%;
    top: -60px;
    font-size: 30px;
    z-index: 999999999;
    font-weight: 600;
    text-shadow: 1px 1px 1px #000;
}
#section4 .f2{
    font-family: 'noto';
    color: #565656;
    position: absolute;
    right: 13%;
    top: -60px;
    font-size: 30px;
    z-index: 999999999;
    font-weight: 600;
    text-shadow: 1px 1px 1px #000;
}

@media screen and (max-width: 1050px) {
    #section4 {
        padding-left: 0px;
        padding-right: 0px;
        height: auto;
        padding-bottom: 10%;
    }

    #section4 h2 {
        font-size: 50px;
    }

    #section4 ul {
        display: flex;
        flex-direction: column;
        /* gap: 20px; */
    }

    #section4 ul li {
        width: 80%;
        margin: 0 10%;
        flex: 1 1 100%; 
        transition: none; 
    }

    #section4 ul li a > div {
        height: 200px; 
        margin: 5px auto;
        max-width: 85%;
        display: block;
    }

    #section4 ul li a > p {
        font-size: 25px;
        padding-bottom: 15px;
        text-align: center;
    }

    #section4 ul li:hover a p {
        font-size: 25px;
    }
}

#footer {
    font-family: 'noto';
    /* background-color:rgb(0, 0, 0); */
    background: url(../img/images05.png) center/cover;
    height:400px; /* 푸터 높이 */
    margin-top: auto; /* 푸터를 하단으로 밀어내기 */
    width: 100%;
    position: relative; /* 기본 위치 */
}
html,body{
    overflow-x: hidden;
    overflow-y: auto;
}
.flogo{
    /* background: #f00; */
    width: 250px;
    margin-bottom: 20px;
}
.flogo img{
    height: auto;
}
#footer .middle{
    width: 100vw;
    position: absolute;
    top: 20%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 10vw;
    line-height: 25px;
    color: #b8b8b8;
    font-family: 'HancomMalangMalang-Regular';
}
.mleft{
    /* background: #ff0; */
    color: #f0f0f0;
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
    0 2px 2px rgba(0,0,0,0.11), 
    0 4px 4px rgba(0,0,0,0.11), 
    0 8px 8px rgba(0,0,0,0.11), 
    0 16px 16px rgba(0,0,0,0.11), 
    0 32px 32px rgba(0,0,0,0.11);
    font-family: 'noto';
}
.mright{
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    text-align: center;
    padding-top: 25px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
    0 2px 2px rgba(0,0,0,0.11), 
    0 4px 4px rgba(0,0,0,0.11), 
    0 8px 8px rgba(0,0,0,0.11), 
    0 16px 16px rgba(0,0,0,0.11), 
    0 32px 32px rgba(0,0,0,0.11);
    letter-spacing: 2px;
    font-family: 'HancomMalangMalang-Regular';
}
.mright p{
    font-family: 'HancomMalangMalang-Regular';
}
#footer .bottom{
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
    0 2px 2px rgba(0,0,0,0.11), 
    0 4px 4px rgba(0,0,0,0.11), 
    0 8px 8px rgba(0,0,0,0.11), 
    0 16px 16px rgba(0,0,0,0.11), 
    0 32px 32px rgba(0,0,0,0.11);
    color: #aeaeae;
    font-weight: 400;
    font-size: 13px;
    display: flex;
    position: absolute;
    top: 70%;
    width: 100vw;
    justify-content: left;
    padding:0 10vw;
    font-family: 'noto';
}
@media (max-width: 500px) {
    #footer .bottom .sns a{
        font-size: 13px;
    }
    .mright{
        color: #fff;
        font-size: 20px;
        letter-spacing: 0px;
    }
    .top a{
        position: absolute;
        padding-top: 0% !important;
        right: 10.5%;
        bottom: 20%;
        width: 70px !important;
        height: 70px !important;
        border-radius: 50%;
        background: #a7002d;
        text-align: center;
        line-height: 67px;
        font-weight: 600;
        font-size: 20px !important;
        color: #fff;
    }
}
#footer .bottom .sns{
    font-family: 'noto';
    text-shadow: 0 1px 1px rgba(0,0,0,0.11), 
    0 2px 2px rgba(0,0,0,0.11), 
    0 4px 4px rgba(0,0,0,0.11), 
    0 8px 8px rgba(0,0,0,0.11), 
    0 16px 16px rgba(0,0,0,0.11), 
    0 32px 32px rgba(0,0,0,0.11);
    display: flex;
    font-size: 16px;
}
#footer .bottom .sns a{
    font-family: 'noto';
    margin-right: 10px;
    color: #aeaeae;
}
#footer .bottom .sns a:hover{
    color: #fff;
    /* cursor: pointer; */
}
.top a{
    font-family: 'noto';
    position: absolute;
    padding-top: 0.8%;
    right: 11.2%;
    bottom: 20%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #a7002d;
    text-align: center;
    line-height: 67px;
    font-weight: 600;
    font-size: 25px;
    color: #fff;
}
.top:hover a{
    background: rgb(198, 0, 46);
}
/* section6 */
#section6{
    border-top: 1px solid #ccc;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    /* background: #ff0; */
}
#section6 .h-20{
    text-indent: -99999999;
    font-family: 'noto';
    margin: 0 auto;
    width: 80%;
    height: 100%;
    background: url(../img/h-20.png) center/cover;
}
@media screen and (max-width: 500px) {
    #section6 {
        width: 100vw;
        height: auto; /* 높이를 자동 조정 */
        max-width: 100%;
        padding: 50px 20px; /* 패딩 조정 */
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    #section6 .h-20 {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9; /* 가로 세로 비율 유지 */
        background: url(../img/h-20.png) center/contain no-repeat;
    }
}


/* section5 */
@media screen and (max-width: 500px) {
    #section5 h2 {
        font-size: 50px !important;
        margin-bottom: 50px !important;
    }
    .box_up .ebox, .box_up .pbox {
        width: 410px !important;
        height: 300px !important;
    }
    .ebox h4 {
        width: 393px;
        height: 55px !important;
        font-size: 32px;
        padding: 0px 0px 10px !important;
        letter-spacing: -0.09em;
        color: #232323;
    }
    .ebox .e_tbox2 p{
        line-height: 1.3 !important;
        font-size: 13px !important;
        color: #363636 !important;
    }
    .pbox h4 {
        width: 393px;
        height: 55px !important;
        padding: 0px 0px 10px !important;
        color: #232323;
    }
    .p_numbox1 {
        width: 393px;
        height: 47px;
        font-size: 35px !important;
        line-height: .5 !important;
        font-weight: 600;
        letter-spacing: -2.33px;
        color: #363636 !important;
    }
    .p_daybox1 {
        width: 393px;
        height: 41px;
        padding: 0px 0px 0px 0px !important;
        font-size: 16px;
        color: #363636;
    }


    .box_up .ebox {
        height: 250px !important;
        padding: 30px 44px 10px !important;
    }
    .box_up .pbox {
        height: 250px !important;
        padding: 50px 47px 10px !important;
    }
}
#section5{
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    padding: 100px 100px 0;
    margin-bottom: 50px;
}
#section5 h2{
    font-family: 'noto';
    font-size: 60px;
    text-align: center;
    margin-bottom: 100px;
    color: #ba0c2f;
    /* font-family: 'HancomMalangMalang-Regular'; */
    font-weight: 600;
}
.qbox {
    margin: 0 auto;
    width: 70vw;
    height: 55.556vh;
    background-color: #fff;
    /* border-radius: 30px; */
    position: relative;
    box-shadow: 5px 5px 24.3px 2.7px rgba(0, 0, 0, 0.09);
    color: #000;
    border-radius: 20px;
}
.qbox_wrap {
    position: absolute;
    width: 63.6vw;
    height: 40vh;
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
    color: #000;
}
.box_up {
    width: 63.6vw;
    height: 40vh;
    display: flex;
    justify-content: space-between;
}
.box_up .ebox {
    width: 30.7vw;
    height: 36.111vh;
    float: left;
    background: url(../img/sec04_backimg01.png) no-repeat top center/contain;
    /* margin-right: 2vw; */
    padding: 52px 44px 155px;
    color: #000;
    border-radius: 20px;
    overflow: hidden;
}
.box_up .ebox p{
    font-family: 'noto';
    line-height:2;
}
.box_up .ebox .e_btn{
    margin-top: 20px;
}
.ebox h4 {
    font-family: 'noto';
    width: 393px;
    height: 62px;
    font-size: 32px;
    padding: 0px 0px 30px;
    letter-spacing: -0.09em;
    color: #232323;
}
.e_btn {
    width: 160px;
    height: 45px;
    /* padding: 10px 40px; */
    background-image: linear-gradient(to top, #9c002c, #d2003c);
    border-radius: 20px;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    color: #ffffff;
}
.e_btn {
    display: inline-block;
    color: #fff;
    font-family: "Noto Sans", sans-serif;
    font-size: 14px;
}
.e_btn:hover{
    background: transparent;
    border: 1px solid rgba(128, 128, 128, 0.3);
}
.e_btn:hover {
    color: #000;
}
.box_up .pbox {
    font-family: 'noto';
    width: 30.7vw;
    height: 36.111vh;
    /* float: left; */
    background: url(../img/sec04_backimg02.png) no-repeat top center/contain;
    padding: 53px 47px 369px;
    color: #000;
    border-radius: 20px;
    overflow: hidden;
}
.pbox h4 {
    font-family: 'noto';
    width: 393px;
    height: 63px;
    padding: 0px 0px 30px;
    font-size: 32px;
    color: #232323;
}
.p_numbox1 {
    font-family: 'noto';
    width: 393px;
    height: 47px;
    font-size: 46.5px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -2.33px;
    color: #363636;
}
.p_daybox1 {
    width: 393px;
    height: 41px;
    padding: 32px 0px 0px 0px;
    font-size: 16px;
    color: #000;
    font-family: "Noto Sans", sans-serif;
}
.p_daybox1 span {
    font-family: 'noto';
    margin: 0px 0px 0px 15px;
    color: linear-gradient(to top, #ff8aa2, #ffc0d4);
    font-weight: 500;
    letter-spacing: -0.09em;
    color: #000;
}

@media screen and (max-width: 1594px) {
    #section5 h2 {
        margin-bottom: 50px !important;
    }
    .cont4 {
        width: 100%;
        height: auto;
        padding: 0 20px 20px;
        font-size: 14px;
    }
    .qbox {
        width: 100%;
        height: auto;
        padding: 10px;
        box-shadow: none;
    }
    .qbox_wrap {
        height: auto;
        box-shadow: none;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        right: 0;
        top: 0;
    }
    .box_up {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    .box_up {
        display: flex;
        flex-direction: column; 
        align-items: center;
    }
    
    .box_up .ebox, .box_up .pbox {
        width: 500px;
        height: 300px;
        padding: 52px 44px; 
        background-size: contain; 
        background-repeat: no-repeat;
        background-position: top center;
        text-align: left;
        /* text-shadow: 1px 1px 1px #fff; */
    }
    .e_btn{
        /* margin: 0 auto; */
    }
    /* 텍스트 정렬 유지 */
    .ebox h4, .pbox h4 {
        width: 100%; 
        /* text-align: center; */
    }
    .e_tbox2{
        /* margin-bottom: 20px; */
    }
    /* 버튼도 가운데 정렬 */
    .e_btn {
        /* display: flex;
        justify-content: center; */
        /* margin-top: 20px; */
    }
}

#section3 h5{
    font-family: 'noto';
    color: #565656;
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
    text-shadow: 1px 1px 1px #000;
}
#section2 h5{
    font-family: 'noto';
    color: #565656;
    text-align: center;
    margin-bottom: 50px;
    font-size: 30px;
    text-shadow: 1px 1px 1px #000;
}
@media screen and (max-width: 500px) {
    #section3 h5{
        color: #565656;
        text-align: center;
        margin-bottom: 20px;
        font-size: 30px;
        text-shadow: 1px 1px 1px #000;
    }
    #section2 h5{
        color: #565656;
        text-align: center;
        margin-bottom: 20px;
        font-size: 30px;
        text-shadow: 1px 1px 1px #000;
    }
    #section4 h2 {
        margin-bottom: 40px;
    }
    #section5 h2 {
        margin-bottom: 40px !important;
    }
}